home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Magnum One
/
Magnum One (Mid-American Digital) (Disc Manufacturing).iso
/
d18
/
turbotut.arc
/
INTVAR.PAS
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1989-06-30
|
260 b
|
14 lines
PROGRAM integer_variable_demo;
VAR count : INTEGER;
x,y : INTEGER;
BEGIN
x := 12;
y := 13;
count := x + y;
WRITELN('The value of x is',x:4);
WRITELN('The value of y is',y:5);
WRITELN('And count is now ',count:6);
end.